All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.Coder

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.Coder

public class Coder
extends NativeObject
This class wraps the Objective-C class NSCoder.


Constructor Index

 o Coder()
This default constructor is equivalent to Objective-C's [[NSCoder alloc] init].
 o Coder(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.

Method Index

 o decodeByte()
A wrapper for the - decodeByte Objective-C instance method.
 o decodeChar()
A wrapper for the - decodeChar Objective-C instance method.
 o decodeDataObject()
A wrapper for the - decodeDataObject Objective-C instance method.
 o decodeDouble()
A wrapper for the - decodeDouble Objective-C instance method.
 o decodeFloat()
A wrapper for the - decodeFloat Objective-C instance method.
 o decodeInt()
A wrapper for the - decodeInt Objective-C instance method.
 o decodeLong()
A wrapper for the - decodeLong Objective-C instance method.
 o decodeObject()
A wrapper for the - decodeObject Objective-C instance method.
 o decodePoint()
A wrapper for the - decodePoint Objective-C instance method.
 o decodePropertyList()
A wrapper for the - decodePropertyList Objective-C instance method.
 o decodeRect()
A wrapper for the - decodeRect Objective-C instance method.
 o decodeShort()
A wrapper for the - decodeShort Objective-C instance method.
 o decodeSize()
A wrapper for the - decodeSize Objective-C instance method.
 o encodeBycopyObject(Object)
A wrapper for the - encodeBycopyObject: Objective-C instance method.
 o encodeByrefObject(Object)
A wrapper for the - encodeByrefObject: Objective-C instance method.
 o encodeByte(byte)
A wrapper for the - encodeByte: Objective-C instance method.
 o encodeChar(char)
A wrapper for the - encodeChar: Objective-C instance method.
 o encodeConditionalObject(Object)
A wrapper for the - encodeConditionalObject: Objective-C instance method.
 o encodeDataObject(Data)
A wrapper for the - encodeDataObject: Objective-C instance method.
 o encodeDouble(double)
A wrapper for the - encodeDouble: Objective-C instance method.
 o encodeFloat(float)
A wrapper for the - encodeFloat: Objective-C instance method.
 o encodeInt(int)
A wrapper for the - encodeInt: Objective-C instance method.
 o encodeLong(long)
A wrapper for the - encodeLong: Objective-C instance method.
 o encodeObject(Object)
A wrapper for the - encodeObject: Objective-C instance method.
 o encodePoint(Point)
A wrapper for the - encodePoint: Objective-C instance method.
 o encodePropertyList(Object)
A wrapper for the - encodePropertyList: Objective-C instance method.
 o encodeRect(Rect)
A wrapper for the - encodeRect: Objective-C instance method.
 o encodeRootObject(Object)
A wrapper for the - encodeRootObject: Objective-C instance method.
 o encodeShort(short)
A wrapper for the - encodeShort: Objective-C instance method.
 o encodeSize(Size)
A wrapper for the - encodeSize: Objective-C instance method.
 o systemVersion()
A wrapper for the - systemVersion Objective-C instance method.
 o versionForClassName(String)
A wrapper for the - versionForClassName: Objective-C instance method.

Constructors

 o Coder
 protected Coder(boolean shouldAllocate,
                 int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o Coder
 public Coder()
This default constructor is equivalent to Objective-C's [[NSCoder alloc] init].

Methods

 o encodeDataObject
 public native void encodeDataObject(Data data)
A wrapper for the - encodeDataObject: Objective-C instance method.

 o decodeDataObject
 public native Data decodeDataObject()
A wrapper for the - decodeDataObject Objective-C instance method.

 o versionForClassName
 public native int versionForClassName(String className)
A wrapper for the - versionForClassName: Objective-C instance method.

 o encodeObject
 public native void encodeObject(Object object)
A wrapper for the - encodeObject: Objective-C instance method.

 o encodePropertyList
 public native void encodePropertyList(Object aPropertyList)
A wrapper for the - encodePropertyList: Objective-C instance method.

 o encodeRootObject
 public native void encodeRootObject(Object rootObject)
A wrapper for the - encodeRootObject: Objective-C instance method.

 o encodeBycopyObject
 public native void encodeBycopyObject(Object anObject)
A wrapper for the - encodeBycopyObject: Objective-C instance method.

 o encodeByrefObject
 public native void encodeByrefObject(Object anObject)
A wrapper for the - encodeByrefObject: Objective-C instance method.

 o encodeConditionalObject
 public native void encodeConditionalObject(Object object)
A wrapper for the - encodeConditionalObject: Objective-C instance method.

 o decodeObject
 public native Object decodeObject()
A wrapper for the - decodeObject Objective-C instance method.

 o decodePropertyList
 public native Object decodePropertyList()
A wrapper for the - decodePropertyList Objective-C instance method.

 o systemVersion
 public native int systemVersion()
A wrapper for the - systemVersion Objective-C instance method.

 o encodePoint
 public native void encodePoint(Point point)
A wrapper for the - encodePoint: Objective-C instance method.

 o decodePoint
 public native Point decodePoint()
A wrapper for the - decodePoint Objective-C instance method.

 o encodeSize
 public native void encodeSize(Size size)
A wrapper for the - encodeSize: Objective-C instance method.

 o decodeSize
 public native Size decodeSize()
A wrapper for the - decodeSize Objective-C instance method.

 o encodeRect
 public native void encodeRect(Rect rect)
A wrapper for the - encodeRect: Objective-C instance method.

 o decodeRect
 public native Rect decodeRect()
A wrapper for the - decodeRect Objective-C instance method.

 o encodeDouble
 public native void encodeDouble(double value)
A wrapper for the - encodeDouble: Objective-C instance method.

 o encodeFloat
 public native void encodeFloat(float value)
A wrapper for the - encodeFloat: Objective-C instance method.

 o encodeLong
 public native void encodeLong(long value)
A wrapper for the - encodeLong: Objective-C instance method.

 o encodeInt
 public native void encodeInt(int value)
A wrapper for the - encodeInt: Objective-C instance method.

 o encodeShort
 public native void encodeShort(short value)
A wrapper for the - encodeShort: Objective-C instance method.

 o encodeByte
 public native void encodeByte(byte value)
A wrapper for the - encodeByte: Objective-C instance method.

 o encodeChar
 public native void encodeChar(char value)
A wrapper for the - encodeChar: Objective-C instance method.

 o decodeDouble
 public native double decodeDouble()
A wrapper for the - decodeDouble Objective-C instance method.

 o decodeFloat
 public native float decodeFloat()
A wrapper for the - decodeFloat Objective-C instance method.

 o decodeLong
 public native long decodeLong()
A wrapper for the - decodeLong Objective-C instance method.

 o decodeInt
 public native int decodeInt()
A wrapper for the - decodeInt Objective-C instance method.

 o decodeShort
 public native short decodeShort()
A wrapper for the - decodeShort Objective-C instance method.

 o decodeByte
 public native byte decodeByte()
A wrapper for the - decodeByte Objective-C instance method.

 o decodeChar
 public native char decodeChar()
A wrapper for the - decodeChar Objective-C instance method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index